GET PlanCare2Api/Employees/Cases?employeeIds[0]={employeeIds[0]}&employeeIds[1]={employeeIds[1]}

Gets the cases in the caseload of the requested employees

Request Information

URI Parameters

Name Description Type Additional information
employeeIds

List of employeeIds

Collection of integer

Required

Body Parameters

None.

Response Information

Resource Description

List of clients in the requested employees caseloads

Collection of Case
Name Description Type Additional information
ClientId

Identifier of the client

Identity

-

ClientName

The name of the client

string

-

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "ClientId": {
      "$id": "2",
      "Identifier": "sample string 1",
      "Type": 0
    },
    "ClientName": "sample string 1"
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface">
  <Case>
    <ClientId xmlns:d3p1="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Common.Infrastructure">
      <d3p1:Identifier>sample string 1</d3p1:Identifier>
      <d3p1:Type>ExternalId</d3p1:Type>
    </ClientId>
    <ClientName>sample string 1</ClientName>
  </Case>
  <Case>
    <ClientId xmlns:d3p1="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Common.Infrastructure">
      <d3p1:Identifier>sample string 1</d3p1:Identifier>
      <d3p1:Type>ExternalId</d3p1:Type>
    </ClientId>
    <ClientName>sample string 1</ClientName>
  </Case>
</ArrayOfCase>